home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 818 b | 27 lines | [TEXT/GEOL] |
- Item 9125471 14-May-90 18:17PDT
-
- From: MOOF Rollin, Keith A
-
- To: MACAPP.TECH$ MacApp Technical
-
- Sub: RE>MPW Pascal to TP3 Expe
-
- Attn: Icon Technology UK,IDV
- SentBy: Keith Rollin
- Reply to: RE>MPW Pascal to TP3 Experienc
- > (not a big loss, because the performance of the program using the MacApp
- > debugger was lousey).
-
- This is usually due to the fact that running method discipline slows down
- method calls a lot. By turning this off with the following command in your
- program's initialization routines, you can get your debug versions to run a
- lot faster:
-
- IF qDebug & DisciplineMethodCalls(FALSE) THEN;
-
- You can also toggle this setting with the XD command sequence in MacApp's
- debugger.
-
- - Keith
-
-